home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 050a / snr53b.zip / QUOTES.S < prev    next >
Text File  |  1993-05-30  |  1KB  |  36 lines

  1. \  QUOTES.S
  2. \  Try to fix up typewriter double quotes to be
  3. \  left- and right-sided as a proper typesetting
  4. \  style would have them.
  5.  
  6.  '= `          \ single quote after a space should be left-sided...
  7.  '\n= '\p2     \ ...unless it precedes a number, in which case leave it alone.
  8. \0a'=\0a`      \ single quote first thing on a line should be left-sided...
  9. \0a'\n=\0a'\p2 \ ...unless it precedes a number, in which case leave it alone.
  10.  
  11. "=''        \ If none of the following left-sided conversions are done, then
  12.             \ assume a double quote is a right-sided quote
  13.  
  14.  "= ``         \ double quote after a space should be left-sided
  15. \0a"=\0a``     \ and these are various other left-sided quotes
  16. \09"=\09``     \ (You may want to add some of your own)
  17. -"=-``
  18. /"=/``
  19. ("=(``
  20. >"=>``
  21. ]"=]``
  22. _"=_``
  23. \3d"=\3d``
  24.  
  25. 0"=0"          \ assume that quotes following number characters
  26. 1"=1"          \ are meant to be inches.
  27. 2"=2"
  28. 3"=3"
  29. 4"=4"
  30. 5"=5"
  31. 6"=6"
  32. 7"=7"
  33. 8"=8"
  34. 9"=9"
  35.  
  36.